Ruby Basics

Here's some reference material about ruby basics. Arrays and Hashes array = [1,2,3,4,5] # => [1,2,3,4,5] array.pop # => 5 array # => [1,2,3,4] The array has been modified by the pop metho ...